Skip to main content
DELETE
/
customers
/
{customerId}
/
drip-campaigns
/
{dripCampaignId}
cURL
curl --request DELETE \
  --url https://sandbox.veritusagent.ai/api/v1/customers/{customerId}/drip-campaigns/{dripCampaignId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "customer-converted"
}
'
This response has no body data.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
reason
enum<string>

The reason the drip campaign was canceled.

Available options:
customer-converted,
customer-engaged

Response

200 - undefined